home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / network / lattice / dulib.lzh / DU_LIB / TIMER.C < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-10  |  315 b   |  21 lines

  1. /*
  2.   DU_LIB v2
  3.   Gem Window Management & Dialog Library For Lattice C
  4.   ©1994, by Craig Graham.
  5.   
  6.   Based on the DU_LIBv1 Library for HiSoft Basic.
  7. */
  8.  
  9. /*
  10.     Timer Driven Routine handling
  11. */
  12.  
  13. #include "dulib.h"
  14.  
  15. void Set_timer_callback(short t, CallBack c)
  16. {
  17.     timer_rate=t;
  18.     timer_callback=c;
  19. }
  20.  
  21.